home *** CD-ROM | disk | FTP | other *** search
/ AEMail 2.40 / AEMail v2.40.iso / arexx / mailto.readme < prev    next >
Text File  |  1999-12-15  |  2KB  |  56 lines

  1. mailto.readme
  2.  
  3. THIS SCRIPT WILL RUN ON BOTH REGISTERED AND UNREGISTERED COPIES OF AEMAIL
  4.  
  5. The "mailto.aem" script is an ARexx script that can be used to compose and
  6. send email "mailto" messages from your browser.  AEMail can be running (or
  7. not) when this script is called.
  8.  
  9. This script is more sophisticated than the one described in the .guide
  10. file.  It can be used with any browser and will automatically load AEMail
  11. if it is not already loaded.
  12.  
  13.                              HOW TO IMPLEMENT
  14.                              ----------------
  15.  
  16. Move the mailto.aem script to the REXX: directory.
  17.  
  18. In your browser set the "mailto" function to call an external program.  The
  19. program call should be "rx mailto.aem".  This calls a ARexx script.  The
  20. parameters for this call should be: email-address public-screen.  You
  21. should use the appropriate tokens to call these items.  For IBrowse, the
  22. call would be:
  23.  
  24.     rx mailto.aem %h %n
  25.  
  26. The %h token is used for the "mailto" address and the %n token is used to 
  27. pass the IBROWSE public screen.
  28.  
  29. The screen name is required to bring the browser's screen forward after the
  30. mail is composed and sent.  If the screen name is invalid, a requester will
  31. appear on the AEMail screen indicating it was bad and displaying what was
  32. passed.
  33.  
  34. You must have installed AEMail with the standard AEMail Install script so
  35. that the AEMail_dir environmental variable is set properly.  That is where
  36. the script knows where to find the AEMail program if it has not been
  37. previously loaded.
  38.  
  39.                                 HOW TO USE
  40.                                 ----------
  41.  
  42. Clicking on a "mailto" address in the browser will bring up the AEMail
  43. compose window with the "mailto" address placed in the "To:" string.  You
  44. then compose the message as you would normally from AEMail.  When you click
  45. on any of the action gadgets at the bottom on the window, the browser
  46. screen will be brought forward over the AEMail screen.  AEMail will remain
  47. running and can be used again for another mailto.
  48.  
  49. You can always bring the AEMail screen forward by clicking on the screen
  50. depth gadget in your browser.
  51.  
  52. If AEMail is not loaded when you click on the "mailto" in the browser page,
  53. AEMail will be automatically loaded.  It will take a few seconds to load
  54. AEMail if it has not already been loaded.
  55.  
  56.